home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / tnt / tnt.exe / {app} / plugins / Chkdsk Countdown.ttp < prev    next >
INI File  |  2005-03-15  |  1KB  |  43 lines

  1. [SETTINGS]
  2. category=Windows Tweaks::Startup/Shutdown::CheckDisk/ScanDisk Countdown
  3. Caption=CheckDisk/ScanDisk Countdown
  4. version=1.0
  5. OstrERSION=2000,XP,2003
  6. #=When Windows is not shutdown normally, Windows performs an automatic disk check on the system hard drives to ensure data consistency.  Prior to each volume being checked, the system displays a message allowing the user to skip the disk check by pressing any key. This tweak allows you to eliminate, reduce or extend the time-out period accordingly.
  7. #=\n\n
  8. #=If zero is set, there is no countdown and you cannot cancel the scan.
  9. #= The default value is 10 seconds. To reset to the default value, clear the text field.
  10. Author=
  11.  
  12.  
  13. [INTERFACE]
  14. TYPE=multi
  15. type0=spin
  16. Text0=Timeout Seconds
  17. style0=0,259200
  18.  
  19. [SCRIPT]
  20. Dim str
  21. str = "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\AutoChkTimeOut"
  22.  
  23. SUB OnInit()
  24.  
  25.  
  26.   SetItemText 0, RegReadValue(str)
  27.      
  28. END SUB
  29.  
  30.  
  31. SUB OnApply(x,y)
  32. Dim s
  33.  s = GetItemText(0)
  34.  
  35.  if len(s) > 0 then
  36.      RegWriteValue str, s, 2
  37.  else
  38.      if RegValueExists(str) =true then RegDeleteVal str
  39.  end if
  40.  
  41. END SUB
  42.  
  43.